home *** CD-ROM | disk | FTP | other *** search
/ No Fragments Archive 12: Textmags & Docs / nf_archive_12.iso / MAGS / SOURCES / ATARI_SRC.ZIP / atari source / PART_F / VIEWMAN / UNUSED.C < prev    next >
Encoding:
C/C++ Source or Header  |  2001-02-10  |  790 b   |  60 lines

  1. #include <sys\gemskel.h>
  2.  
  3. /*
  4.  * TURN OFF Turbo C "parameter X is never used" warnings
  5.  */
  6. #pragma warn -par
  7.  
  8.  
  9. /*-----------------------------------------------------------------------
  10.  */
  11. void
  12. acc_open( const int *msg )
  13. {
  14. }
  15.  
  16.  
  17. void
  18. acc_close( const int *msg )
  19. {
  20. }
  21.  
  22.  
  23. void
  24. msg_hook( const int *msg, int *event )
  25. {
  26. }
  27.  
  28.  
  29. void
  30. do_timer( int *event )
  31. {
  32. }
  33.  
  34.  
  35. BOOLEAN
  36. evnt_hook( int event, int *msg, MRETS *mrets, int *key, int *nclicks )
  37. {
  38.     return FALSE; /* don't override event handling */
  39. }
  40.  
  41.  
  42. BOOLEAN
  43. wind_in( int *msg, WINFO *w )
  44. {
  45.     return FALSE; /* let do_windows() do its thing */
  46. }
  47.  
  48. void
  49. wind_adjust( const WINFO *w, GRECT *rect )
  50. {
  51. }
  52.  
  53. BOOLEAN
  54. wind_out( const int *msg, WINFO *w )
  55. {
  56.     return FALSE; /* don't quit the application */
  57. }
  58.  
  59.  
  60.